/* 全页面设置 */
*{
	padding: 0;margin: 0;
	font-family: "PingFang SC";
	font-size: 14px;color: #333;
	}
a{text-decoration: none;}
ul,ol{list-style: none;}
img{border: none;}
input,textarea{outline: none;}
body{
	margin: 0;
	padding: 0;
	}

/* 头部 */
.header{
		height: 70px;
		width:100%;
		background: rgba(255,255,255,255);
		margin: 0 auto;
		position: fixed;
		z-index: 10;
	    border-bottom:1px solid #F0F0F0
	}
.hdcon{
		width:70%;
		margin: 0 auto;
		height:100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
.gflogo img{
		width: 160px;
		margin-top: 10px;
		
	}	
.hdnav ul{
		display: flex;
		height: 60px;
		width: 100%;
		list-style: none;
		font-size: 14px;
	}
.hdnav li a{
		display: block;
		font-size: 14px;
		padding: 0 20px;
		transition: 0.2s;
		position: relative;
		line-height: 80px;
		text-decoration: none;
    }
.hdnav li:hover a{
		color:#EF2D58
	}
.hdnav li a::after{
	    display: block;
	    content: "";
	    width: 26px;
	    height: 1.5px;
	    background:#EF2D58;
	    border-radius: 50%;
	    position: absolute;
	    bottom: 26px;
	    left: 50%;
	    margin-left: -13px;
	    opacity: 0;
	    transition: 0.2s;
	}
.hdnav li:hover a::after{
	    opacity: 1;
	}
	
.hdmenu{
	width:40px;
	margin-top: 15px;
	cursor: pointer;
	display: none;
}	
.hdmenu i{
	
	display: block;
	width: 30px;
	height: 2px;
	background: #333;
	margin: 5px auto;
	
}


	
/* 探索产品 */	
.detail{
	    width: 70%;
	    box-sizing: border-box;
		margin: 0 auto;
		padding-top: 70px;
		margin-bottom: 50px;
		
    }
	
.detail .button{
        width: 100%;
		background-color: #F3F3F3;
		height:30px;

	}
	
.detail .button a h2{
	    text-align: center;
		justify-content: center;
		line-height: 30px;
		color: #333;
		font-weight: 400;
	
}
.detailbox1 .detailpic1{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox2 .detailpic2{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox3 .detailpic3{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }
	
.detailbox4 .detailpic4{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox5 .detailpic5{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox6 .detailpic6{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox7 .detailpic7{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox8 .detailpic8{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }
	
.detailbox9 .detailpic9{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }

.detailbox10 .detailpic10{
	    display: block;
        width: 100%;
	    box-sizing: border-box;
    }
	
	





/* 底部 */
.footer{
	    width:100%;
		background: #F9F9F9;
}

	
/* 品牌logo层 */	
.ftbrand{
	    width: 70%;
		margin: 0 auto;
		display: flex;
		padding-top: 20px;
}
.ftbrand .tuao{
	    padding-right: 30px;
		margin: auto 0;
}
.tuaoft img{
	    height: 35px;
}

/* 外网链接层 */
.ftmain{
	    width: 70%;
        margin: 0 auto;   
		padding: 10px 0;
		display: flex;
		justify-content: space-between;
    }
.ftword {
	    font-weight: 400;
		margin: auto 0;

} 
.ftpic a{
	    padding: 5px;
	
}


.weixin img{
	    width: 40px;
}

.xiaohongshu img{
	    width: 40px;
}

.douyin img{
	    width: 40px;
}

.bilibili img{
	    width: 40px;
}



/* 版权层 */
.copyright{
	    margin: 0 auto;
	    width: 70%;
	    padding: 20px 0;
	    color: #333;
	    border-top:1px solid #888;
	    font-size: 10px;
		display: flex;
		justify-content: space-between;
}
.copyright.cptit{
        font-weight: 400;

    }
.copyright.footnav{
	    font-weight: 400;
}






/* 媒体查询条件-小屏参数设置 */
@media ( max-width:992px ){
	/* 头部响应 */
.hdcon{
		width:90%;
	}
.gflogo img{
		width: 130px;
		margin-top: 10px;
	}
.hdnav{
	display: none;
	position: absolute;
	top:71px;
	left:0;
	width: 100%;	
}
.hdnav ul{
		height: auto;
		width: 100%;
		list-style: none;
		flex-direction: column;
		text-align: center;
	}
.hdnav li a{
		display: block;
		font-size: 16px;
		line-height: 80px;
		background-color: rgba(255,255,255,0.9);
		border-bottom: 1px solid #fff;
    }	
.hdmenu{
	display: block;
}	
.hdmenu i{
	transform-origin: left;
	transition: 0.3s;
}
.hdmenu.active i:nth-child(1){
	transform:rotate(45deg);
	width:20px;
}
.hdmenu.active i:nth-child(2){
	opacity: 0;
}
.hdmenu.active i:nth-child(3){
	transform:rotate(-45deg);
		width:20px;
}


/* 产品矩阵 */
.detail{
	    width: 100%;
	    box-sizing: border-box;
		padding: 70px 10px 0px;
		
		
}


/* 底部 */
.footer{
	    width:100%;
		background: #F0F0F0;
    }
.ftbrand{
	    width: 70%;
		margin: 0 auto;
		display: block;
		text-align: center;
		padding-top: 20px;
}
.ftbrand .tuao{
		margin: auto 0;
}
.tuaoft img{
	    height: 35px;
}
.ftmain{
	    width: 100%;
		margin: 0 auto;
		padding: 10px 0;
		display: block;
        text-align: center;
	    
    }
.ftword {
		margin-bottom: 10px;

} 
.copyright{
	    width: 100%;
	    margin: 0 auto;
	    padding: 20px 0px;
	    color: #333;
	    border-top:1px solid #888;
	    font-size: 10px;
		display: block;
		text-align: center;
}
.copyright.cptit{
        font-weight: 400;
        padding-left: 5px;
    }
.copyright.footnav{
	    font-weight: 400;
		padding-right: 5px;
}

}